* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    overflow: hidden;
    clear: both;
}


/* 手机导航 */
.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 75%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(51, 51, 51, 0.4);
    border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}

/* 网页头部 */
.header {
    width: 100%;
    position: fixed;
	z-index:9999;
    top: 0;
    left: 0;
	background:rgba(5,108,177,0.7);
}

.header_main {
    max-width: 1600px;
    height: 100px;
    margin: auto;
}

.logo {
    float: left;
    width: 15.81%;
    height: 100%;
    line-height: 100px;
}

.header_right {
    float: right;
    width: 83%;
    height: 100px;
    line-height: 100px;
}

/* 导航 */
.nav {
    width: 78.5%;
    overflow: hidden;
    float: left;
}

.nav ul {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    width: calc(100%/8);
    text-align: center;
    font-size: 15px;
    height: 100px;
    line-height: 100px;
    position: relative;
}

.nav ul li a {
    color: #fff;
    display: inline-block;
    position: relative;
}

.header_contact {
    float: left;
    background: #0065b6;
    color: #fff;
    border: 1px solid #fff;
    height: 27px;
    border-radius: 20px;
    margin-top: 35px;
    line-height: 27px;
    padding: 0 15px;
}

.header_search {
    float: right;
}

.header_search_box {
    display: none;
    width: 20%;
    position: absolute;
    top: 90px;
    right: 8%;
}

.header_search_box input[type=text] {
    width: 80%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    float: left;
    outline: none;
    border: none;
    font-size: 16px;
}

.header_search_box input[type=submit] {
    width: 20%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    float: left;
    outline: none;
    border: none;
    background: #0065b6;
    color: #fff;
    font-size: 16px;
}

/* banner */
.banner {
    width:100%;
	overflow:hidden;
}

.banner_01 img {
    width: 100%;
}

.banner_01 .swiper-pagination-bullet {
    background: #fff;
    width: 40px;
    height: 5px;
    border-radius: 0;
    opacity: 1;
}

.banner_01 .swiper-pagination-bullet-active {
    width: 40px;
    height: 5px;
    border-radius: 0;
    background-color: #fff;
}

/* 关于我们 */
.about {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 20px #f0f0f0;
    border-radius: 30px;
    padding-top: 55px;
    margin-top: -60px;
    padding-bottom: 40px;
	z-index:9999;
	position:relative;
}

.title {
    width: 100%;
    overflow: hidden;
    margin: auto;
    text-align: center;
}

.title_ch {
    font-size: 27px;
    font-weight: 700;
    color: #484848;
}

.title_ch span {
    color: #006fb4;
}

.title_eng {
    color: #070707;
    font-weight: 200;
    font-size: 18.75px;
    text-transform: uppercase;
    margin-top: 10px;
}

.about_main {
    width: 100%;
    overflow: hidden;
    padding: 0 30px;
    margin-top: 30px;
}

.about_left {
    width: 49%;
    overflow: hidden;
    font-size: 18px;
    color: #070707;
    padding-left: 30px;
    float: left;
    line-height: 3;
}

.about_right {
    float: right;
    width: 49%;
    overflow: hidden;
}

.about_right img {
    width: 100%;
}

.about_data {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.about_data_01 {
    width: 25%;
    color: #006fb4;
    float: left;
    float: left;
}

.about_data_01 p:first-child {
    font-size: 21.75px;
    text-align: center;
}
.about_data_01 span{
    font-size: 44.99px;
    font-weight: 700;
}

.about_data_01 p:last-child {
    font-size: 17.25px;
    text-align: center;
}

/* 竞争优势 */
.advantage{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.advantage_main{
    width: 100%;
    overflow: hidden;
    padding: 5px;
    margin-top: 30px;
}
.advantage_main_01{
    width: 23.5%;
    height: 445px;
    text-align: center;
    box-shadow: 0 0 10px #eeeeee;
    float: left;
    margin-right: 2%;
    padding: 5px;
    border-radius: 20px;
    padding-top: 40px;
}
.advantage_main_01:last-child{
    margin-right: 0;
}
.advantage_main_pic{
    width: 107px;
    height: 107px;
    margin: auto;
    margin-top: 30px;
}
.advantage_main_title{
    font-size: 20px;
    color: #000000;
    margin-top: 30px;
}

.advantage_main_content{    
    width: 70%;
    overflow: hidden;
    margin: auto;
    text-align: center;
    line-height: 2.2;
    color: #8d8d8d;
    font-size: 15px;
    margin-top: 10px;
}
.advantage_main_01:hover{
    background: #006fb4;
}
.advantage_main_01:hover .advantage_main_title{
    color: #fff;
}
.advantage_main_01:hover .advantage_main_content{
    color: #fff;
}
.advantage_main_01:hover .advantage_main_pic{
    filter: invert(1) hue-rotate(270deg);
}

/* 产品中心 */
.product{
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    margin-top: 20px;
    padding-top: 40px;
    padding-bottom: 30px;
}

.product_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}
.product_nav{
    width: 40%;
    overflow: hidden;
    float: left;
}
.product_nav a{
    display: block;
    width: 48%;
    margin-right: 4%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 30px;
    font-size: 15px;
    color: #070707;
    float: left;
    margin-bottom: 80px;
}
.product_nav a:nth-child(2n){
    margin-right: 0;
}
.product_nav a.activer{
    background: #0067c1;
    color: #fff;
}
.product_right{
    width: 50%;
    overflow: hidden;
    float: right;
}
.product_right_01{
    width: 100%;
    overflow: hidden;
    display: none;
}
.product_right_big{
    width: 100%;
    overflow: hidden;
}
.product_right_big a{
    display: none;
}
.product_right_big img{
    width: 100%;
}
.product_switch_01{
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}
.product_switch_01 img{
    width: 100%;
}

/* 应用行业 */
.application{
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}
.application_main{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.application_main_01{
    width: 20%;
    overflow: hidden;
    position: relative;
    float: left;
}
.application_pic{
    width: 100%;
    overflow: hidden;
}
.application_pic img{
    width: 100%;
    height: 590px;
}
.application_bg{
    width: 100%;
    height: 100%;
    background: rgba(148, 144, 154, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.6s;
}
.application_word{
    width: 200px;
    height: 200px;
    border-radius: 100%;
    border: 5px solid #fff;
    background: rgba(62, 132, 188, 0.8);
    position: absolute;
    right: -50px;
    top: 30%;
    text-align: center;
    line-height: 200px;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transition: all 0.6s;
}
.application_main_01:hover .application_bg{
    opacity: 0;
}
.application_main_01:hover .application_word{
    opacity: 1;
}


/* 合作伙伴 */
.partner{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.client_main {
    max-width: 1280px;
    margin: 40px auto 50px;
}

.flex_wrap {
    flex-wrap: wrap;
}

.box {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.client_item {
    width: 25%;
    height: 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    cursor: pointer;
    text-align: center;
}

.items_center {
    align-items: center;
}

.justify_center {
    justify-content: center;
}

.client_item img {
    width: 100%;
}

.client_item:nth-of-type(1) {
    background-image: url("../images/cl1.png");
}

.client_item:nth-of-type(2) {
    background-image: url("../images/cl2.png");
}

.client_item:nth-of-type(3) {
    background-image: url("../images/cl2.png");
}

.client_item:nth-of-type(4) {
    background-image: url("../images/cl3.png");
}

.client_item:nth-of-type(5) {
    background-image: url("../images/cl4.png");
}

.client_item:nth-of-type(6) {
    background-image: url("../images/cl5.png");
}

.client_item:nth-of-type(7) {
    background-image: url("../images/cl5.png");
}

.client_item:nth-of-type(8) {
    background-image: url("../images/cl6.png");
}

.client_item:nth-of-type(9) {
    background-image: url("../images/cl7.png");
}

.client_item:nth-of-type(10) {
    background-image: url("../images/cl8.png");
}

.client_item:nth-of-type(11) {
    background-image: url("../images/cl8.png");
}

.client_item:nth-of-type(12) {
    background-image: url("../images/cl9.png");
}




/* 新闻资讯 */
.news{
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    padding-top: 30px;
    padding-bottom: 40px;
}
.news_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.news_left{
    width: 46.93%;
    overflow: hidden;
    float: left;
}
.news_left_pic{
    width: 100%;
    overflow: hidden;
}
.news_left_pic img{
    width: 100%;
}
.news_left_content{
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.news_lc_title{
    font-size: 16px;
    color: #292929;
    font-weight: 700;
}
.news_lc_main{
    font-size: 14px;
    color: #696969;
    line-height: 2.2;
    margin-top: 10px;
}
.news_right{
    width: 52%;
    overflow: hidden;
    float: right;
}
.news_right_01{
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.news_right_01:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.news_right_date{
    float: left;
    width: 18%;
    overflow: hidden;
    text-align: center;
}
.news_right_day{
    font-size: 36px;
    color: #292929;
}
.news_right_year{
    font-size: 14px;
    color: #696969;
}
.news_right_content{
    width: 80%;
    overflow: hidden;
}
.news_rc_title{
    font-size: 16px;
    color: #292929;
    font-weight: 700;
}
.news_rc_main{
    font-size: 14px;
    color: #696969;
    line-height: 2;
    margin-top: 10px;
}
.faq{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    position: relative;
}
.faq_left{
    float: left;
    width: 10%;
}
.fqa_ch{
    font-weight: 700;
    color: #005aa9;
    font-size: 24px;
}
.faq_eng{
    color: #999999;
    font-size: 18px;
    margin-top: 5px;
}
.faq_main{
    float: right;
    width: 88%;
}

.fqa_main_01{
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
}
.faq_q{
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}
.faq_picq{
    display: inline-block;
}
.faq_ques{
    display: inline-block;
    padding-left: 15px;
    font-size: 16px;
    color: #292929;
    font-weight: 700;
}
.faq_pica{
    display: inline-block;
    position: relative;
    top: -30px;
}
.faq_answ{
    width: 90%;
    display: inline-block;
    font-size: 14px;
    color: #696969;
    line-height: 2;
    padding-left: 10px;
}


.faq_main_left {
    position: absolute;
    top: 120px;
    left: 10px;
    width: 35px;
    height: 36px;
    background: url(../images/faq_left.png);
}

.faq_main_left:hover {
    background: url(../images/faq_right.png);
    transform: rotate(-180deg);
}

.faq_main_right {
    position: absolute;
    top: 120px;
    left: 50px;
    width: 35px;
    height: 36px;
    background: url(../images/faq_left.png);
    transform: rotate(180deg);
}

.faq_main_right:hover {
    background: url(../images/faq_right.png);
    transform: rotate(0deg);
}

/* 页脚 */
.foot{
    width: 100%;
    height: 937px;
    background: url(../images/foot_bg.jpg) center no-repeat;
    position: relative;
}
.foot_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    padding-top: 85px;
}
.foot_contact{
    width: 55%;
    overflow: hidden;
    float: left;
    margin-top: 105px;
    color: #fff;
    position: relative;
    z-index: 999;
}
.foot_title{
    width: 100%;
    overflow: hidden;
}
.foot_title_ch{
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
}
.foot_title_eng{
    font-size: 14px;
    display: inline-block;
    margin-left: 10px;
}
.foot_contact_main{
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
    border: 15px solid rgba(68, 67, 66, 0.7);
    background: rgba(12, 87, 146, 0.8);
    padding-top: 30px;
    padding-left: 40px;
    padding-bottom: 30px;
}
.foot_cm_title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.foot_cm_content{
    font-size: 15px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.foot_cmc_pic{
    width: 31px;
    height: 35px;
    float: left;
	text-align:center;
	line-height:35px;
}
.foot_cmc_word{
    width: 95%;
    float: right;
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #fff;
}
.foot_right{
    width: 50%;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
}
.foot_right img{
    width: 100%;
}

.copy{
    width: 100%;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    background: #151515;
}
.copy a{
    color: #fff;
    margin-left: 10px;
}
/* 内页标题 */
.intitle {
    width: 100%;
    overflow: hidden;
    margin: auto;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.intitle_ch {
    font-size: 27px;
    font-weight: 700;
    color: #484848;
}

.intitle_ch span {
    color: #006fb4;
}

.intitle_eng {
    color: #070707;
    font-weight: 200;
    font-size: 18.75px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* 内页大图 */
.inbanner{
    width: 100%;
    overflow: hidden;
}
.inbanner img{
    width: 100%;
}

/* 产品展示内页 */
.inproduct{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.inproduct_main{    
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.inproduct_main_01{
    width: 19%;
    overflow: hidden;
    margin-right: 1.25%;
    margin-bottom: 20px;
    float: left;
}
.inproduct_main_01:nth-child(5n){
    margin-right: 0;
}

.inproduct_main_02{
    width: 24%;
    overflow: hidden;
    margin-right: calc(4% / 3);
    margin-bottom: 20px;
    float: left;
}
.inproduct_main_02:nth-child(4n){
    margin-right: 0;
}


.inproduct_main_pic{
    width: 100%;
    overflow: hidden;
}
.inproduct_main_pic img{
    width: 100%;
}
.inproduct_main_word{
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #000;
    font-size: 16px;
    text-align: center;
}


/* 合作伙伴 */
.inpartner{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.inpartner_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.inpartner_pic{
    width: 23.5%;
    overflow: hidden;
    margin-right: 2%;
    float: left;
    box-shadow: 0 0 15px #f2f2f2;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.inpartner_pic:nth-child(4n){
    margin-right: 0;
}
.inpartner_pic img{
    width: 90%;
}

/* 应用行业 */
.industry{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.industry_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
}
.industry_main_01{
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
.industry_pic{
    width: 100%;
    overflow: hidden;
}
.industry_pic img{
    width: 100%;
}
.industry_word{
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 100%;
    border: 5px solid #fff;
    background: #4287b7;
    color: #fff;
    font-weight: 700;
    font-size: 21px;
}
.industry_main_01:nth-child(2n+1) .industry_word{
    position: absolute;
    right: -30px;
    top: 40%;
    text-align: left;
    padding-left: 20px;
}
.industry_main_01:nth-child(2n) .industry_word{
    position: absolute;
    left: -30px;
    top: 40%;
    text-align: right;
    padding-right: 20px;
}

/* 产品二级 */
.center{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.center_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.center_left{
    width: 18.75%;
    overflow: hidden;
    float: left;
}
.center_left a{
    display: block;
    margin-bottom: 50px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #c9c9c9;
    color: #070707;
    font-size: 16px;
}
.center_left a:hover{
    color: #fff;
    background: #0067c1;
}
.center_right{
    width: 80%;
    overflow: hidden;
    float: right;
}
.center_right_01{
    width: 32%;
    overflow: hidden;
    margin-right: 2%;
    margin-bottom: 20px;
    float: left;
}
.center_right_01:nth-child(3n){
    margin-right: 0;
}
.center_right_pic{
    width: 100%;
    overflow: hidden;
}
.center_right_pic img{
    width: 100%;
}
.center_right_word{
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    color: #000000;
}

/* 关于我们内页 */
.inabout {
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 20px #f0f0f0;
    border-radius: 30px;
    padding-top: 55px;
    margin-top: -60px;
    padding-bottom: 40px;
    position: relative;
}


.inabout_main {
    width: 100%;
    overflow: hidden;
    padding: 0 30px;
    margin-top: 30px;
}

.inabout_left {
    width: 49%;
    overflow: hidden;
    font-size: 18px;
    color: #070707;
    padding-left: 30px;
    float: left;
    line-height: 3;
}

.inabout_right {
    float: right;
    width: 49%;
    overflow: hidden;
}

.inabout_right img {
    width: 100%;
}

.inabout_data {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.inabout_data_01 {
    width: 25%;
    color: #006fb4;
    float: left;
    float: left;
}

.inabout_data_01 p:first-child {
    font-size: 21.75px;
    text-align: center;
}
.inabout_data_01 span{
    font-size: 44.99px;
    font-weight: 700;
}

.inabout_data_01 p:last-child {
    font-size: 17.25px;
    text-align: center;
}

/* 企业资质 */
.honor{
    max-width: 1600px;
    /* overflow: hidden; */
    margin: auto;
    margin-top: 40px;
}
.honor_title{
    font-size: 36px;
    color: #191919;
    text-align: center;
}
.honor_main{
    width: 100%;
    /* overflow: hidden; */
    margin-top: 30px;
    position: relative;
}
.honor_01{
    width: 100%;
    overflow: hidden;
}
.honor_pic{
    width: 100%;
    overflow: hidden;
}
.honor_pic img{
    width: 100%;
}

.honor_main_left {
    position: absolute;
    top: 240px;
    left: -70px;
    width: 66px;
    height: 66px;
    background: url(../images/honor_left.png);
}

.honor_main_right {
    position: absolute;
    top: 240px;
    right: -70px;
    width: 66px;
    height: 66px;
    background: url(../images/honor_left.png);
    transform: rotate(180deg);
}

/* 企业文化 */
.culture{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    padding-bottom: 50px;
}
.culture_title{
    font-size: 36px;
    color: #191919;
    text-align: center;
}
.culture_main{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.culture_main_left{
    width: 80.625%;
    overflow: hidden;
    float: left;
}
.culture_ml_01{
    width: calc(100% / 3);
    overflow: hidden;
    float: left;
    position: relative;
}
.culture_pic{
    width: 100%;
    overflow: hidden;
    border: 1px solid #fff;
}
.culture_pic img{
    width: 100%;
    height: 364px;
}
.culture_word{
    width: 100%;
    height: 100%;
    background: rgba(86, 44, 33, 0.3);
    color: #fff;
    padding-top: 40%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    font-size: 28px;
    transition: all 0.6s;
}
.culture_content{
    width: 100%;
    height: 100%;
    background: rgba(235, 138, 68, 0.6);
    color: #fff;
    padding-top: 35%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.6s;
}
.culture_c_title{
    font-size: 28px;
    font-weight: 700;
}
.culture_c_main{
    font-size: 23px;
}
.culture_ml_01:hover .culture_word{
    opacity: 0;
}
.culture_ml_01:hover .culture_content{
    opacity: 1;
}
.culture_main_right{
    width: 19.375%;
    overflow: hidden;
    float: right;
    position: relative;
}
.culture_rpic{
    width: 100%;
    overflow: hidden;
}
.culture_rpic img{
    width: 100%;
    height: 730px;
}
.culture_rword{
    writing-mode: tb-rl;
    width: 100%;
    height: 100%;
    background: rgba(86, 44, 33, 0.3);
    color: #fff;
    padding-right: 10%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    font-size: 28px;
    transition: all 0.6s;
}
.culture_rcontent{
    writing-mode: tb-rl;
    width: 100%;
    height: 100%;
    background: rgba(235, 138, 68, 0.6);
    color: #fff;
    text-align: center;
    position: absolute;
    padding-right: 10%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.6s;
}
.culture_cr_title{
    font-size: 28px;
    font-weight: 700;
}
.culture_cr_main{
    font-size: 23px;
}
.culture_main_right:hover .culture_rword{
    opacity: 0;
}
.culture_main_right:hover .culture_rcontent{
    opacity: 1;
}

/* 内页导航 */
.innav{
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #e5e5e5;
}
.innav_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
}
.innav_main a{
    color: #070707;
    font-size: 19px;
}

/* 产品详情 */
.proshow{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
}
.proshow_swiper{
    width: 11.56%;
    overflow: hidden;
    float: left;
}
.proshow_01{
    width: 100%;
    height: 785px;
}
.proshow_01 .swiper-slide{
    width: 100%;
    border: 1px dashed #e5e5e5;
}
.proshow_01 img{
    width: 100%;
}
.proshow_pic_big{
    float: left;
    margin-left: 3%;
    width: 47.6%;
    overflow: hidden;
}
.proshow_pb_01{
    width: 100%;
    overflow: hidden;
    display: none;
}
.proshow_pb_01 img{
    width: 100%;
}

.proshow_main{
    width: 29.37%;
    overflow: hidden;
    float: right;
    margin-top: 60px;
}
.proshow_title{
    font-size: 27px;
    color: #000000;
}
.proshow_mintitle{
    font-size: 18px;
    color: #7c7c7c;
    margin-top: 20px;
}
.proshow_circular{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.proshow_circular_01{
    width: 115px;
    height: 115px;
    border-radius: 100%;
    border: 1px solid #2763ac;
    font-size: 18px;
    color: #000000;
    text-align: center;
    line-height: 115px;
    float: left;
    margin-right: 50px;
}
.proshow_circular_01:last-child{
    margin-right: 0;
}

.proshow_contact{
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.proshow_contact_word{
    font-size: 15px;
    color: #000;
}

.proshow_contact_num{
    font-size: 27px;
    color: #f85d00;
    font-weight: 700;
}
.proshow_button{
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
}
.proshow_button a{
    width: 190px;
    height: 50px;
    line-height: 50px;
    display: block;
    background: #056cb1;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    
}

.proshow_nav{
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #f3f3f3;
    border-top: 1px solid #056cb1;
}
.proshow_nav_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
}
.proshow_nav_01{
    float: left;
    text-align: center;
    
}
.proshow_nav_01 a{
    padding: 0 20px;
    border-right: 1px solid #000;
}
.proshow_nav_01:last-child a{
    border-right: none;
}
.proshow_nav_01:hover{
    background: #fff;
}
/* 产品亮点 */
.highlights{
    width: 100%;
    overflow: hidden;
    background: #f3f3f3;
    padding-bottom: 30px;
}
.highlights_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    color: #000000;
}
.highlights_title{
    font-size: 22.5px;    
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hightlights_left{
    font-size: 13.5px;
    width: 56.875%;
    overflow: hidden;
    padding-left: 30px;
    line-height: 2.5;
    float: left;
}

.hightlights_left img{
	width:100%;}
.hightlights_right{
    float: right;
    margin-top: -100px;
    width: 40%;
    overflow: hidden;
}
.hightlights_right img{
    width: 100%;
}

.highlights_bottom{
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}
.highlights_bottom_left{
    float: left;
    width: 49%;
    /*height: 460px;*/
    background: #fff;
    padding: 20px;
    font-size: 14px;
    color: #000;
    line-height: 2.5;
}
.highlights_bottom_title{
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}
.highlights_bottom_right{
    float: right;
    width: 49%;
   /* height: 460px;*/
    background: #fff;
    padding: 20px;
    font-size: 14px;
    color: #000;
    line-height: 2.5;
}

/* 结构图纸 */
.drawing{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.drawing_title{
    font-size: 22.5px;    
    text-align: center;
    margin-bottom: 30px;
}
.drawing_pic{
    width: 85%;
    overflow: hidden;
	margin:auto;
}
.drawing_pic img{
    width: 100%;
}

/* 性能参数 */
.parameter{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.parameter_title{
    font-size: 22.5px;    
    text-align: center;
    margin-bottom: 30px;
}
.parameter_pic{
    width:85%;
    overflow: hidden;
	margin:auto;
}
.parameter_pic img{
    width: 100%;
}

/* 相关产品 */
.relevant{
    width: 100%;
    overflow: hidden;
    background: #f3f3f3;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-top: 30px;
}
.relevant_title{
    font-size: 22.5px;    
    text-align: center;
}
.relevant_main{
    max-width: 1600px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}
.relevant_01{
    width: 100%;
    overflow: hidden;
}
.relevant_pic{
    width: 100%;
    overflow: hidden;
}
.relevant_pic img{
    width: 100%;
}
.relevant_word{
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #000;
}





/* 新闻资讯内页 */
.info {
    width: 100%;
    overflow: hidden;
    padding-top: 30px;
}

.info_title {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.info_main {
    max-width: 1600px;
    margin: auto;
    overflow: hidden;

}

.info_main_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px #eee solid;
}

.info_left {
    float: left;
    width: 25.8%;
}

.info_left img {
    width: 100%;
}

.info_right {
    float: right;
    width: 74%;
    padding-left: 20px;
}

.info_right_top {
    font-size: 18px;
    line-height: 50px;
    width: 99%;
    border-bottom: 1px #eee solid;
}

.info_right_date {
    font-size: 15px;
    line-height: 40px;
    color: #7f7f7f;
}

.info_right_main {
    line-height: 30px;
    font-size: 16px;
    color: #7f7f7f;
}

.info_right_button {
    margin-top: 20px;
    background-color: #00418b;
    width: 93px;
    height: 33px;
    line-height: 33px;
    text-align: center;

}

.info_right_button a {
    color: #fff;
}

/* 新闻详情 */
.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_d_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 16px;
    line-height: 2.2;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 100%;
}

.newshow {
    width: 100%;
    overflow: hidden;
}

.newshows {
    max-width: 1600px;
    margin: 20px auto 40px;
}


/* 联系我们 */
.p12-aboutinfo-1 {
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
    z-index: 9999;
}

.p12-aboutinfo-1 .tit {
    height: 80px;
    background: url(../image/d63899212b4c4e7d99ac9ed293b3ac9f_2.jpg)no-repeat center 91px;
    clear: both;
    text-align: center;
}

.p12-aboutinfo-1 .tit span {
    display: block;
    font-size: 28px;
    color: #000;
    padding-top: 10px;
}

.p12-aboutinfo-1 .tit em {
    font-style: normal;
    color: #999;
    text-transform: uppercase;
    font-family: "Times New Roman";
    padding-top: 5px;
    display: block;
}






.g-gywm {
    height: 530px;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
}

.wm-l {
    width: 50%;
    float: left;
    color: #fff;
    height: 420px;
    overflow: hidden;
    background: #0f6dc2;
    padding: 60px 0 0 40px;
}

.wm-l h4 {
    font: 20px "Microsoft YaHei";
    line-height: 60px;
    padding-bottom: 30px;
    margin: 0;
}

.wm-l li {
    font: 16px "Microsoft YaHei";
    color: #fff;
    line-height: 40px;
}

.wm-l li b {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.wm-r {
    float: left;
    width: 50%;
}

#map {
    width: 100%;
    height: 460px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 12px;
}

.map-title {
    font-size: 16px;
    line-height: 24px;
}

.map-list {
    font-size: 14px;
    line-height: 22px;
    color: #333;
    margin-top: 6px;
}




/* 在线留言 */

.listcontacts {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
}

.listcontacts>div {
    max-width: 1600px;
    margin: 5rem auto;
    overflow: hidden;
}

.listcontacts>div>span {
    font-size: 28px;
    color: #6a6a6a;
}

.listcontacts>div>span>i {
    font-style: normal;
    font-size: 19px;
    color: #8d8c8c;
    font-family: Arial Regular;
    text-transform: uppercase;
    margin-left: 5px;
}



.listcontactsTitle {
    overflow: hidden;
    margin-top: 3rem;
}

.listcontactsTitle input {
    height: 58px;
    display: block;
    float: left;
    padding-left: 47px;
    box-sizing: border-box;
    width: 48%;
    font-size: 16px;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    outline: none;
}

.listcontactsTitle input:nth-child(1) {
    background: url(../image/122.png)left 0 no-repeat #fff;
    background-position: 11px;
}

.listcontactsTitle input:nth-child(2) {
    float: right;
    background: url(../image/123.png)left 0 no-repeat #fff;
    background-position: 17px;
}

.listcontactsTitle input:nth-child(3) {
    background: url(../image/124.png)left 0 no-repeat #fff;
    background-position: 8px;
}

.listcontactsTitle input:nth-child(4) {
    float: right;
    background: url(../image/125.png)left 0 no-repeat #fff;
    background-position: 12px;
}


.listcontactsTextarea {
    width: 100%;
    border: 1px solid #ccc;
    background: url(../image/126.png)left 0 no-repeat #fff;
    background-position: 12px 16px;
    padding-left: 47px;
    font-size: 16px;
    padding-top: 18px;
    height: 174px;
    outline: none;
}

.listcontactsubmit {
    text-align: center;
    margin-top: 3rem;
}

.listcontactsubmit input {
    background: #0f6ec2;
    color: #fff;
    border: 0;
    width: 260px;
    height: 50px;
    font-size: 16px;
    margin: 0 5px;
}

.listcontactsubmit input:nth-child(2) {
    background: #484848;
}

















